home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Libraries / New WASTE Handlers / New Sound Handler / WEObjectSound.h < prev   
C/C++ Source or Header  |  1995-06-07  |  502b  |  24 lines

  1. #pragma once
  2. #include "WASTE.h"
  3.  
  4. // * WASTE Sound Object header
  5. // * see .c file for documentation
  6.  
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10.  
  11. #ifdef __cplusplus
  12. OSErr    WEObjSoundInstall(SndChannelPtr    inChannel = NULL, WEHandle inWaste = NULL);
  13. #else
  14. OSErr    WEObjSoundInstall(SndChannelPtr    inChannel, WEHandle inWaste);
  15. #endif
  16.  
  17. OSErr    WEObjSoundNew(WEHandle theWE);    
  18. void    WEObjSoundIdle(void);
  19. void    WEObjSoundStop(void);
  20. //Boolean    WEObjSoundBusy(void); //unimplemented at present
  21.  
  22. #ifdef __cplusplus
  23. }
  24. #endif